set hitpoint to point(the mouseH - the left of sprite me, the mouseV - the top of sprite me)
if whichway = #down then
set controlslist to gsbmousedownslist
puppetSound(2, "Button")
else
set controlslist to gsbmouseupslist
end if
set mycontrol to getAt(controlslist, me)
if not listp(mycontrol) then
return #notcontrol
end if
if count(mycontrol) < 2 then
return #notcontrol
end if
set hitlist to getAt(mycontrol, 1)
if not listp(hitlist) then
return #notcontrol
end if
set actionlist to getAt(mycontrol, 2)
if not listp(actionlist) then
return #notcontrol
end if
if (count(actionlist) <> count(hitlist)) or (count(hitlist) = 0) then
return #badcontrol
end if
repeat with i = 1 to count(hitlist)
if inside(hitpoint, getAt(hitlist, i)) then
puppetSprite(sbhiliterect, 0)
do(getAt(actionlist, i))
exit repeat
end if
end repeat
end
on checksbrollover whichway
set noroll to 1
repeat with i = sbhiliterect - 1 down to 1
if rollOver(i) then
if (listp(getAt(gsbmouseupslist, i)) and ((whichway = #up) or (whichway = #both))) or (listp(getAt(gsbmousedownslist, i)) and ((whichway = #down) or (whichway = #both))) then
hilitesbcontrol(i, whichway)
set noroll to 0
exit repeat
end if
end if
end repeat
if noroll then
set the locH of sprite sbhiliterect to -1000
set the visible of sprite objectpict to 0
set the visible of sprite lightsprite to 0
end if
end
on hilitesbcontrol contnum, whichway
set norect to 1
if (whichway = #up) or (whichway = #both) then
set upcont to getAt(gsbmouseupslist, contnum)
if not listp(upcont) then
set uprects to []
end if
if count(upcont) < 2 then
set uprects to []
end if
if voidp(uprects) then
set uprects to getAt(upcont, 1)
else
nothing()
end if
else
set uprects to []
end if
if (whichway = #down) or (whichway = #both) then
set downcont to getAt(gsbmousedownslist, contnum)
if not listp(downcont) then
set downrects to []
end if
if count(downcont) < 2 then
set downrects to []
end if
if voidp(downrects) then
set downrects to getAt(downcont, 1)
else
nothing()
end if
else
set downrects to []
end if
set rectlist to combo(uprects, downrects)
set hoff to the left of sprite contnum
set voff to the top of sprite contnum
set where to point(the mouseH - hoff, the mouseV - voff)
set mouseposition to point(the mouseH, the mouseV)
repeat with r in rectlist
if inside(where, r) then
set order to getOne(rectlist, r)
set smallpict to "B" & char 2 to 7 of word 2 of getAt(actslist, order) & "1"